home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-02 / zdisk.zip / ZDISK.DOC < prev    next >
Text File  |  1991-04-18  |  2KB  |  37 lines

  1.  
  2.  
  3. Program   :  ZDISK -  Zero unused DISK sectors for security purposes.
  4.  
  5. Format    :  zdisk drv    Where drv is an optional drive letter parameter
  6.  
  7. Version   :  3.1
  8.  
  9. Author    :  S. E. Kleiner
  10.  
  11. Function  :  Write over currently unused sectors of a disk to secure
  12.              information in files that were deleted.  When the DOS
  13.              DEL or ERASE commands are used to remove files, they
  14.              only remove the files from the directory.  The actual
  15.              file data still remains on the disk and can be examined
  16.              via various utilities.  Even when alternate utilities are
  17.              used to remove files which do "zero" the file before removal,
  18.              many commercial programs erase/delete old versions of a file
  19.              when creating a new one (editors, etc.).  Therefore,
  20.              confidential information may still be left on the disk.
  21.              ZDISK prevents recovery of this information by overwriting
  22.              all unused sectors on the disk.
  23.  
  24. Description: ZDISK creates two files in the root directory of the current
  25.              drive which fill the entire remaining disk space (generally
  26.              for a hard disk), thus covering any usused (deleted) sectors.
  27.              The files are made of blocks which consist of a signature:
  28.                "ZDisk version xxx was here.",
  29.              followed by zeroes (00 Hex).  The first file uses 32K blocks
  30.              for speed.  The second file uses smaller blocks to assure
  31.              that every available sector is written to.  ZDISK erases the
  32.              files it has written, thus returning the space to the available
  33.              pool.  If an error terminates ZDISK, the temporary files may be left on the
  34.              disk using up space.  If this happens simply use the
  35.              DOS DEL or ERASE command to remove the files from the root
  36.              directory.
  37.